From: Jan Beulich Date: Fri, 17 Feb 2017 14:59:15 +0000 (+0100) Subject: console: avoid wrapping of console pointers X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~2746 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=29c249edee121ffc8446cbd7e7d3cde0610a10e6;p=xen.git console: avoid wrapping of console pointers We particularly want/need to avoid accessing data outside (ahead of) the ring buffer. Also latch both pointers into local variable to avoid different steps of the calculation being done with different values. Reported-by: Quan Luo Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper --- diff --git a/xen/drivers/char/console.c b/xen/drivers/char/console.c index eb21e7cdbf..f0659fba1b 100644 --- a/xen/drivers/char/console.c +++ b/xen/drivers/char/console.c @@ -254,20 +254,23 @@ static void conring_puts(const char *str) long read_console_ring(struct xen_sysctl_readconsole *op) { XEN_GUEST_HANDLE_PARAM(char) str; - uint32_t idx, len, max, sofar, c; + uint32_t idx, len, max, sofar, c, p; str = guest_handle_cast(op->buffer, char), max = op->count; sofar = 0; - c = conringc; - if ( op->incremental && ((int32_t)(op->index - c) > 0) ) + c = read_atomic(&conringc); + p = read_atomic(&conringp); + if ( op->incremental && + (c <= p ? c < op->index && op->index <= p + : c < op->index || op->index <= p) ) c = op->index; - while ( (c != conringp) && (sofar < max) ) + while ( (c != p) && (sofar < max) ) { idx = CONRING_IDX_MASK(c); - len = conringp - c; + len = p - c; if ( (idx + len) > conring_size ) len = conring_size - idx; if ( (sofar + len) > max ) @@ -281,10 +284,7 @@ long read_console_ring(struct xen_sysctl_readconsole *op) if ( op->clear ) { spin_lock_irq(&console_lock); - if ( (uint32_t)(conringp - c) > conring_size ) - conringc = conringp - conring_size; - else - conringc = c; + conringc = p - c > conring_size ? p - conring_size : c; spin_unlock_irq(&console_lock); }